Enter a type and click search.




Results for Magento\Payment\Gateway\Command\CommandPool

File: vendor/amzn/amazon-pay-module/etc/di.xml

<virtualType name="AmazonCommandPool"
             type="Magento\Payment\Gateway\Command\CommandPool">
    <arguments>
        <argument name="commands" xsi:type="array">
            <item name="authorize" xsi:type="string">
                AmazonAuthorizeCommand
            </item>
            <item name="capture" xsi:type="string">
                AmazonCaptureStrategyCommand
            </item>
            <item name="sale" xsi:type="string">
                AmazonSaleCommand
            </item>
            <item name="settlement" xsi:type="string">
                AmazonSettlementCommand
            </item>
            <item name="void" xsi:type="string">
                AmazonVoidCommand
            </item>
            <item name="cancel" xsi:type="string">
                AmazonVoidCommand
            </item>
            <item name="refund" xsi:type="string">
                AmazonRefundCommand
            </item>
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AmazonCommandPool object that it should return a Magento\Payment\Gateway\Command\CommandPool object.

This configuration tells the Object Manager that when a user wants a AmazonCommandPool object that the following arguments should be used in the foo object's constructor.

  • $commands = [...items...];
Results for Magento\Payment\Gateway\Command\CommandPool

File: vendor/klarna/module-ordermanagement/etc/di.xml

<virtualType name="KlarnaCommandPool"
             type="Magento\Payment\Gateway\Command\CommandPool">
    <arguments>
        <argument name="commands" xsi:type="array">
            <item name="capture" xsi:type="string">
                Klarna\Ordermanagement\Gateway\Command\Capture
            </item>
            <item name="cancel" xsi:type="string">
                Klarna\Ordermanagement\Gateway\Command\Cancel
            </item>
            <item name="void" xsi:type="string">
                Klarna\Ordermanagement\Gateway\Command\Cancel
            </item>
            <item name="refund" xsi:type="string">
                Klarna\Ordermanagement\Gateway\Command\Refund
            </item>
            <item name="fetch_transaction_information"
                  xsi:type="string">
                Klarna\Ordermanagement\Gateway\Command\FetchTransactionInfo
            </item>
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual KlarnaCommandPool object that it should return a Magento\Payment\Gateway\Command\CommandPool object.

This configuration tells the Object Manager that when a user wants a KlarnaCommandPool object that the following arguments should be used in the foo object's constructor.

  • $commands = [...items...];

File: vendor/klarna/module-ordermanagement/etc/di.xml

<virtualType name="KPCommandPool"
             type="Magento\Payment\Gateway\Command\CommandPool">
    <arguments>
        <argument name="commands" xsi:type="array">
            <item name="capture" xsi:type="string">
                Klarna\Ordermanagement\Gateway\Command\Capture
            </item>
            <item name="cancel" xsi:type="string">
                Klarna\Ordermanagement\Gateway\Command\Cancel
            </item>
            <item name="void" xsi:type="string">
                Klarna\Ordermanagement\Gateway\Command\Cancel
            </item>
            <item name="refund" xsi:type="string">
                Klarna\Ordermanagement\Gateway\Command\Refund
            </item>
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual KPCommandPool object that it should return a Magento\Payment\Gateway\Command\CommandPool object.

This configuration tells the Object Manager that when a user wants a KPCommandPool object that the following arguments should be used in the foo object's constructor.

  • $commands = [...items...];
Results for Magento\Payment\Gateway\Command\CommandPool

File: vendor/klarna/module-kp/etc/di.xml

<virtualType name="KPCommandPool"
             type="Magento\Payment\Gateway\Command\CommandPool">
    <arguments>
        <argument name="commands" xsi:type="array">
            <item name="authorize" xsi:type="string">
                Klarna\Kp\Gateway\Command\Authorize
            </item>
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual KPCommandPool object that it should return a Magento\Payment\Gateway\Command\CommandPool object.

This configuration tells the Object Manager that when a user wants a KPCommandPool object that the following arguments should be used in the foo object's constructor.

  • $commands = [...items...];
Results for Magento\Payment\Gateway\Command\CommandPool

File: vendor/magento/module-paypal/etc/di.xml

<virtualType name="PayflowproCommandPool"
             type="Magento\Payment\Gateway\Command\CommandPool">
    <arguments>
        <argument name="commands" xsi:type="array">
            <item name="vault_authorize" xsi:type="string">
                Magento\Paypal\Gateway\Payflowpro\Command\AuthorizationCommand
            </item>
            <item name="vault_sale" xsi:type="string">
                Magento\Paypal\Gateway\Payflowpro\Command\SaleCommand
            </item>
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual PayflowproCommandPool object that it should return a Magento\Payment\Gateway\Command\CommandPool object.

This configuration tells the Object Manager that when a user wants a PayflowproCommandPool object that the following arguments should be used in the foo object's constructor.

  • $commands = [...items...];
Results for Magento\Payment\Gateway\Command\CommandPool

File: vendor/magento/magento2-base/dev/tests/integration/_files/Magento/TestModuleFakePaymentMethod/etc/di.xml

<virtualType name="Magento\TestModuleFakePaymentMethod\Gateway\Command\CommandPool"
             type="Magento\Payment\Gateway\Command\CommandPool">
    <arguments>
        <argument name="commands" xsi:type="array">
            <item name="authorize" xsi:type="string">
                Magento\TestModuleFakePaymentMethod\Gateway\Command\DoNothingCommand
            </item>
            <item name="sale" xsi:type="string">
                Magento\TestModuleFakePaymentMethod\Gateway\Command\DoNothingCommand
            </item>
            <item name="capture" xsi:type="string">
                Magento\TestModuleFakePaymentMethod\Gateway\Command\DoNothingCommand
            </item>
            <item name="settlement" xsi:type="string">
                Magento\TestModuleFakePaymentMethod\Gateway\Command\DoNothingCommand
            </item>
            <item name="vault_authorize" xsi:type="string">
                Magento\TestModuleFakePaymentMethod\Gateway\Command\DoNothingCommand
            </item>
            <item name="vault_sale" xsi:type="string">
                Magento\TestModuleFakePaymentMethod\Gateway\Command\DoNothingCommand
            </item>
            <item name="vault_capture" xsi:type="string">
                Magento\TestModuleFakePaymentMethod\Gateway\Command\DoNothingCommand
            </item>
            <item name="void" xsi:type="string">
                Magento\TestModuleFakePaymentMethod\Gateway\Command\DoNothingCommand
            </item>
            <item name="refund" xsi:type="string">
                Magento\TestModuleFakePaymentMethod\Gateway\Command\DoNothingCommand
            </item>
            <item name="cancel" xsi:type="string">
                Magento\TestModuleFakePaymentMethod\Gateway\Command\DoNothingCommand
            </item>
            <item name="deny_payment" xsi:type="string">
                Magento\TestModuleFakePaymentMethod\Gateway\Command\DoNothingCommand
            </item>
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual Magento\TestModuleFakePaymentMethod\Gateway\Command\CommandPool object that it should return a Magento\Payment\Gateway\Command\CommandPool object.

This configuration tells the Object Manager that when a user wants a Magento\TestModuleFakePaymentMethod\Gateway\Command\CommandPool object that the following arguments should be used in the foo object's constructor.

  • $commands = [...items...];
Results for Magento\Payment\Gateway\Command\CommandPool

File: vendor/magento/module-braintree/etc/di.xml

<virtualType name="BraintreeCommandPool"
             type="Magento\Payment\Gateway\Command\CommandPool">
    <arguments>
        <argument name="commands" xsi:type="array">
            <item name="authorize" xsi:type="string">
                BraintreeAuthorizeCommand
            </item>
            <item name="sale" xsi:type="string">
                BraintreeSaleCommand
            </item>
            <item name="capture" xsi:type="string">
                BraintreeCaptureStrategyCommand
            </item>
            <item name="settlement" xsi:type="string">
                BraintreeCaptureCommand
            </item>
            <item name="vault_authorize" xsi:type="string">
                BraintreeVaultAuthorizeCommand
            </item>
            <item name="vault_sale" xsi:type="string">
                BraintreeVaultSaleCommand
            </item>
            <item name="vault_capture" xsi:type="string">
                BraintreeVaultCaptureCommand
            </item>
            <item name="void" xsi:type="string">
                BraintreeVoidCommand
            </item>
            <item name="refund" xsi:type="string">
                BraintreeRefundCommand
            </item>
            <item name="cancel" xsi:type="string">
                Magento\Braintree\Gateway\CancelCommand
            </item>
            <item name="deny_payment" xsi:type="string">
                Magento\Braintree\Gateway\CancelCommand
            </item>
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual BraintreeCommandPool object that it should return a Magento\Payment\Gateway\Command\CommandPool object.

This configuration tells the Object Manager that when a user wants a BraintreeCommandPool object that the following arguments should be used in the foo object's constructor.

  • $commands = [...items...];

File: vendor/magento/module-braintree/etc/di.xml

<virtualType name="BraintreePayPalCommandPool"
             type="Magento\Payment\Gateway\Command\CommandPool">
    <arguments>
        <argument name="commands" xsi:type="array">
            <item name="authorize" xsi:type="string">
                BraintreePayPalAuthorizeCommand
            </item>
            <item name="sale" xsi:type="string">
                BraintreePayPalSaleCommand
            </item>
            <item name="capture" xsi:type="string">
                BraintreePayPalCaptureStrategyCommand
            </item>
            <item name="settlement" xsi:type="string">
                BraintreeCaptureCommand
            </item>
            <item name="vault_authorize" xsi:type="string">
                BraintreePayPalVaultAuthorizeCommand
            </item>
            <item name="vault_sale" xsi:type="string">
                BraintreePayPalVaultSaleCommand
            </item>
            <item name="vault_capture" xsi:type="string">
                BraintreeVaultCaptureCommand
            </item>
            <item name="void" xsi:type="string">
                BraintreeVoidCommand
            </item>
            <item name="refund" xsi:type="string">
                BraintreeRefundCommand
            </item>
            <item name="cancel" xsi:type="string">
                Magento\Braintree\Gateway\CancelCommand
            </item>
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual BraintreePayPalCommandPool object that it should return a Magento\Payment\Gateway\Command\CommandPool object.

This configuration tells the Object Manager that when a user wants a BraintreePayPalCommandPool object that the following arguments should be used in the foo object's constructor.

  • $commands = [...items...];
Results for Magento\Payment\Gateway\Command\CommandPool

File: vendor/magento/module-authorizenet-acceptjs/etc/di.xml

<virtualType name="AuthorizenetAcceptjsCommandPool"
             type="Magento\Payment\Gateway\Command\CommandPool">
    <arguments>
        <argument name="commands" xsi:type="array">
            <item name="authorize" xsi:type="string">
                AuthorizenetAcceptjsAuthorizeCommand
            </item>
            <item name="capture" xsi:type="string">
                AuthorizenetAcceptjsCaptureCommand
            </item>
            <item name="sale" xsi:type="string">
                AuthorizenetAcceptjsSaleCommand
            </item>
            <item name="settle" xsi:type="string">
                AuthorizenetAcceptjsSettleCommand
            </item>
            <item name="void" xsi:type="string">
                AuthorizenetAcceptjsVoidCommand
            </item>
            <item name="refund" xsi:type="string">
                AuthorizenetAcceptjsRefundCommand
            </item>
            <item name="refund_settled" xsi:type="string">
                AuthorizenetAcceptjsRefundSettledCommand
            </item>
            <item name="cancel" xsi:type="string">
                AuthorizenetAcceptjsCancelCommand
            </item>
            <item name="accept_payment" xsi:type="string">
                AuthorizenetAcceptjsAcceptPaymentCommand
            </item>
            <item name="accept_fds" xsi:type="string">
                AuthorizenetAcceptjsAcceptFdsCommand
            </item>
            <item name="deny_payment" xsi:type="string">
                AuthorizenetAcceptjsCancelCommand
            </item>
            <item name="get_transaction_details" xsi:type="string">
                AuthorizenetAcceptjsTransactionDetailsCommand
            </item>
            <item name="fetch_transaction_information"
                  xsi:type="string">
                AuthorizenetAcceptjsFetchTransactionInfoCommand
            </item>
        </argument>
    </arguments>
</virtualType>

This is a virtual type configuration.

This configuration is for the base area. Base area configurations will apply to all the sub-applications.

This virtualType configuration tells the Object Manager when a user wants a virtual AuthorizenetAcceptjsCommandPool object that it should return a Magento\Payment\Gateway\Command\CommandPool object.

This configuration tells the Object Manager that when a user wants a AuthorizenetAcceptjsCommandPool object that the following arguments should be used in the foo object's constructor.

  • $commands = [...items...];